home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacHaskell 2.2 / com / lucid / build-prelude next >
Encoding:
Text File  |  1994-09-27  |  1.2 KB  |  19 lines  |  [TEXT/ttxt]

  1. ction compiler.  If you want to recompile
  2. ;; everything from scratch, execute the "clean" script first, or
  3. ;; else use the "compile" script to do this.
  4. (proclaim '(optimize (speed 3) (safety 0) (compilation-speed 0)))
  5. (make-package "MUMBLE-IMPLEMENTATION" :use '("LISP"))
  6. (load "cl-support/cl-init")
  7. (in-package :mumble-user)
  8. (setf *printers* '(phase-time dump-stat))
  9. ;; Set appropriate compiler settings for processing the prelude.
  10. ;; Use production compiler on prelude code and split it up into pieces.
  11. ;; Use fast development compiler on interface.
  12. (setf *code-chunk-size* 200)
  13. (setf *compile-interface* '#t)
  14. (setf *interface-code-quality* 2)
  15. (setf *interface-chunk-size* '#f)
  16. (compile/compile *prelude-unit-filename*)
  17. (lcl:quit)
  18. EOF
  19.